home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Controls
/
Visual Basic Controls.iso
/
vbcontrol
/
intmail2
/
smtpdemo.dpr
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1999-07-20
|
254 b
|
15 lines
program smtpdemo;
uses
Forms,
smtpmain in 'smtpmain.pas' {SMTPForm},
smtpsu in 'smtpsu.pas' {SetupDlg},
msabout in 'msabout.pas' {AboutDlg};
{$R *.RES}
begin
Application.CreateForm(TSMTPForm, SMTPForm);
Application.Run;
end.